Produced by Araxis Merge on 2022-11-18 03:12:08 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/email | creditmemo_update.html | 2016-06-21 09:41:00 +0000 |
| 2 | Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Sales/email | creditmemo_update.html | 2022-11-02 03:42:25 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 6 | 94 |
| Changed | 3 | 9 |
| Inserted | 1 | 1 |
| Removed | 1 | 1 |
| Whitespace | Consecutive whitespace is treated as a single space |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
| Active line-pairing rules |
No regular expressions were active.
| 1 | <!-- | 1 | <!-- | |||
| 2 | /** | 2 | /** | |||
| 3 | * Copyright © 2016 Magento. All rights reserved. | 3 | * Copyright © 2016 Magento. All rights reserved. | |||
| 4 | * See COPYING.txt for license details. | 4 | * See COPYING.txt for license details. | |||
| 5 | */ | 5 | */ | |||
| 6 | --> | 6 | --> | |||
| 7 | <!--@subject {{trans "Update to your %store_name credit memo" store_name=$store.getFrontendName()}} @--> | 7 | <!--@subject {{trans "Update to your %store_name credit memo" store_name=$store.getFrontendName()}} @--> | |||
| 8 | <!--@vars { | 8 | <!--@vars { | |||
| 9 | "var comment":"Credit Memo Comment", | 9 | "var comment":"Credit Memo Comment", | |||
| 10 | "var creditmemo.increment_id":"Credit Memo Id", | 10 | "var creditmemo.increment_id":"Credit Memo Id", | |||
| 11 | "var this.getUrl($store, 'customer/account/')":"Customer Account URL", | 11 | "var this.getUrl($store, 'customer/account/')":"Customer Account URL", | |||
| 12 | "var order.getCustomerName()":"Customer Name", | 12 | "var order.getCustomerName()":"Customer Name", | |||
| 13 | "var order.increment_id":"Order Id", | 13 | "var order.increment_id":"Order Id", | |||
| 14 | "var order.getStatusLabel()":"Order Status" | 14 | "var order.getStatusLabel()":"Order Status" | |||
| 15 | } @--> | 15 | } @--> | |||
| 16 | {{template config_path="design/email/header_template"}} | 16 | {{template config_path="design/email/header_template"}} | |||
| 17 | 17 | |||||
| 18 | <table> | 18 | <table> | |||
| 19 | <tr class="email-intro"> | 19 | <tr class="email-intro"> | |||
| 20 | <td> | 20 | <td> | |||
| 21 | <p class="greeting">{{trans "%name," name=$order.getCustomerName()}}</p> | 21 | <p class="greeting">{{trans "%name," name=$order_data.customer_name}}</p> | |||
| 22 | <p> | 22 | <p> | |||
| 23 | {{trans | 23 | {{trans | |||
| 24 | "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>." | 24 | "Your order #%increment_id has been updated with a status of <strong>%order_status</strong>." | |||
| 25 | 25 | |||||
| 26 | increment_id=$order.increment_id | 26 | increment_id=$order.increment_id | |||
| 27 | order_status=$order.getStatusLabel() | 27 | order_status=$order_data.frontend_status_label | |||
| 28 | |raw}} | 28 | |raw}} | |||
| 29 | {{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}} | |||||
| 30 | </p> | 29 | </p> | |||
| 30 | <p>{{trans 'You can check the status of your order by <a href="%account_url">logging into your account</a>.' account_url=$this.getUrl($store,'customer/account/',[_nosid:1]) |raw}}</p> | |||||
| 31 | <p> | 31 | <p> | |||
| 32 | {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a>.' store_email=$store_email |raw}} | 32 | {{trans 'If you have questions about your order, you can email us at <a href="mailto:%store_email">%store_email</a> | |||
| 33 | {{depend store_hours}} | |||||
| 34 | {{trans 'Our hours are <span class="no-link">%store_hours</span>.' store_hours=$store_hours |raw}} | |||||
| 35 | {{/depend}} | |||||
| 33 | </p> | 36 | </p> | |||
| 34 | </td> | 37 | </td> | |||
| 35 | </tr> | 38 | </tr> | |||
| 36 | <tr class="email-information"> | 39 | <tr class="email-information"> | |||
| 37 | <td> | 40 | <td> | |||
| 38 | {{depend comment}} | 41 | {{depend comment}} | |||
| 39 | <table class="message-info"> | 42 | <table class="message-info"> | |||
| 40 | <tr> | 43 | <tr> | |||
| 41 | <td> | 44 | <td> | |||
| 42 | {{var comment|escape|nl2br}} | 45 | {{var comment|escape|nl2br}} | |||
| 43 | </td> | 46 | </td> | |||
| 44 | </tr> | 47 | </tr> | |||
| 45 | </table> | 48 | </table> | |||
| 46 | {{/depend}} | 49 | {{/depend}} | |||
| 47 | </td> | 50 | </td> | |||
| 48 | </tr> | 51 | </tr> | |||
| 49 | </table> | 52 | </table> | |||
| 50 | 53 | |||||
| 51 | {{template config_path="design/email/footer_template"}} | 54 | {{template config_path="design/email/footer_template"}} |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.